home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / Utilities / MiscUtil.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  639 b   |  45 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        MiscUtil.cpp
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <1>    18.09.1996    NP        first checked in
  13.  
  14.     To Do:
  15. */
  16.  
  17. #ifndef __QUICKDRAWL_
  18. #include <QuickDraw.h>
  19. #endif
  20.  
  21.  
  22. #ifndef _MISCUTIL_
  23. #include "MiscUtil.h"
  24. #endif
  25.  
  26. #ifndef _PLFMDEF_
  27. #include "PlfmDef.h"
  28. #endif
  29.  
  30.  
  31. //==============================================================================
  32. // Cursor Utils
  33. //==============================================================================
  34.  
  35. void WatchCursor()
  36. {
  37.     SetCursor(*GetCursor(watchCursor));
  38. }
  39.  
  40. void ArrowCursor()
  41. {
  42.     SetCursor(&(ODQDGlobals.arrow));
  43. }
  44.  
  45.